*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.globe-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.logo-container {
    text-align: center;
    margin-bottom: 5px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.lock-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lock-body {
    width: 20px;
    height: 16px;
    background: white;
    border-radius: 3px;
    position: relative;
    margin-top: 6px;
}

.lock-shackle {
    width: 16px;
    height: 12px;
    border: 3px solid white;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pen-icon {
    width: 8px;
    height: 14px;
    background: #10b981;
    position: absolute;
    bottom: 2px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
}

.logo-text .signin {
    color: #1f2937;
}

.logo-text .ink {
    color: #1f2937;
}

.tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
    justify-content: center;
}

.tab {
    padding: 12px 4px;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-size: 15px;
}

.tab.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.tab:hover {
    color: #7c3aed;
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

input {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f9fafb;
}

input:focus {
    outline: none;
    border-color: #7c3aed;
    background: white;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9ca3af;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    cursor: pointer;
    accent-color: #7c3aed;
}

.checkbox-label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.forgot-password {
    color: #7c3aed;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.sign-in-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.sign-in-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.sign-up-link {
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    font-size: 14px;
}

.sign-up-link a {
    color: #7c3aed;
    text-decoration: none;
}

.sign-up-link a:hover {
    text-decoration: underline;
}
/* login buttons*/
.btn-social {
  display: block;
  background: hsl(86, 76%, 71%);
  color: white;
  text-decoration: none;
  margin: 10px 0;
  padding: 10px 10px;
  border-radius: 5px;
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
    box-shadow: inset 0 3px 0 hsla(0, 0, 0, 0), 0 3px 3px hsla(0, 0, 0, .2);
    border-radius: 5px;
  }
  
  &:hover::after {
    background: hsla(0, 0, 0, 0.1);
    box-shadow: inset 0 3px 0 hsla(0, 0, 0, 0.2);
  }
  
}

.btn-social {
  padding-left: 64px;
  position: relative;
  z-index: 2;
}

.btn-social .fab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 50px;
    height: 100%;
    text-align: center;
    background: hsla(0, 0, 0, 0.1);
    line-height: 3.2;
    border-radius: 5px 0 0 5px;
}

.btn-facebook {
  background-color: hsl(221, 44%, 41%);
}
.btn-twitter {
  background-color: hsl(206, 82%, 63%);
}
.btn-google {
  background-color: hsl(7, 71%, 55%); 
}
.btn-linkedin {
  background-color: hsl(196, 100%, 43%);
}
.btn-microsoft {
  background-color: hsl(196, 100%, 43%);
}

.signin-logo{
    width: 50px;
    height: 50px;
}