* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #dbe4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.page-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding-top: 45px;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background-color: #4a76c4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 4px solid #dbe4f0;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-card {
    background-color: #f1f3f5;
    padding: 70px 35px 35px 35px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.frm h2 {
    text-align: center;
    color: #1a2c4e;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.frm form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: #555;
}

.frm input[type="text"],
.frm input[type="password"] {
    width: 100%;
    padding: 12px 12px 12px 42px;
    background-color: #dbe4f0;
    border: 2px solid #1a2c4e;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
}

.frm input:focus {
    outline: none;
    border-color: #4a76c4;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #4a76c4;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #3b5fa3;
}

.error-msg {
    background-color: #ffe8e8;
    color: #c53030;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-align: center;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
}

.signup-link a {
    color: #1a2c4e;
    text-decoration: underline;
    font-weight: bold;
}