

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 180px); 
    padding: 40px 20px;
    background: #f7f7f7;
}

.profile-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    
    padding: 12px 30px;
    border-radius: 5px;
    background: #fff;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.login-box {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 380px;
    max-width: 90%;
    padding: 40px 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: #0c642e; 
}


.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 3px;
    outline: none;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.login-box input:focus {
    border-color: #0c642e;
    box-shadow: 0 0 3px rgba(12, 100, 46, 0.5);
}

.options {
    text-align: right;
    margin-top: -5px;
    margin-bottom: 20px;
}

.options a {
    color: #0c642e;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.options a:hover {
    text-decoration: underline;
}


.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    flex: 1;
    border: none;
    border-radius: 3px;
    padding: 10px 0;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.btn.sign {
    background: #0c642e;
}

.btn.sign:hover {
    background: #0a5125;
}

.btn.create {
    background: #3d8b40;
}

.btn.create:hover {
    background: #357537;
}

@media (max-width: 480px) {
    .login-box {
        width: 100%;
        padding: 30px 20px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


