﻿.register-page {
    width: 100%;
    min-height: 100vh;
    background-image: url("../Images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.register-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.register-card {
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    padding: 55px 45px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.65);
    text-align: center;
}

.register-logo {
    width: 80px;
    margin-bottom: 10px;
}

.site-name {
    color: white;
    font-size: 38px;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.label-text {
    display: block;
    text-align: left;
    color: #eaeaea;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-box {
    width: 100%;
    padding: 13px 14px;
    background: #088F8F;
    border: none;
    border-radius: 10px;
    color: black;
    font-size: 15px;
    box-sizing: border-box;
}

    .input-box::placeholder {
        color: rgba(255,255,255,0.65);
    }

.register-btn-main {
    width: 100%;
    margin-top: 28px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: #088F8F;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s ease;
}

    .register-btn-main:hover {
        background: #4b97c6;
        transform: translateY(-2px);
    }

.login-text {
    color: white;
    margin-top: 28px;
    font-size: 14px;
}

.login-btn-link {
    margin-top: 12px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #5fa8d3;
    color: #5fa8d3;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
}

    .login-btn-link:hover {
        background: #5fa8d3;
        color: white;
    }

a.login-btn-link {
    display: inline-block;
    text-decoration: none;
}
